2008-08-05 Tor Lillqvist <tml@novell.com>
* gtk/updateiconcache.c (write_bucket): Enclose ?: expression
with parens so cast covers all of it.
svn path=/trunk/; revision=20996
+2008-08-05 Tor Lillqvist <tml@novell.com>
+
+ * gtk/updateiconcache.c (write_bucket): Enclose ?: expression
+ with parens so cast covers all of it.
+
2008-08-04 Matthias Clasen <mclasen@redhat.com>
* gtk/gtksettings.c: Improve a setting nick: 'aureal' is not really
}
else
{
- if (!write_card32 (cache, (guint32) image->image_data ? image->image_data->offset : 0))
+ if (!write_card32 (cache, (guint32) (image->image_data ? image->image_data->offset : 0)))
return FALSE;
}